home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Som&Video / Awave / Uninst.bat < prev   
DOS Batch File  |  1999-01-22  |  1KB  |  56 lines

  1. @echo off
  2. cd %1
  3.  
  4. cls
  5. echo --------------------------------------------------------------------------------  Awave uninstallation procedure                                  FMJ-Software  --------------------------------------------------------------------------------
  6. echo.
  7. echo Uninstalling...
  8.  
  9. rem ** Clean up the registry **
  10. if exist awave.exe goto runexe
  11. echo Error: Could not find Awave.exe
  12. echo.
  13. echo Uninstallation aborted!
  14. goto end
  15. :runexe
  16. echo Cleaning up the registry...
  17. dir > awblock
  18. awave.exe -UNINSTALL
  19. :wait
  20. if exist awblock goto wait
  21.  
  22. rem ** Delete files? **
  23. if not exist awdel goto nodel
  24.  
  25. echo Deleting files...
  26. del awdel
  27. :retry
  28. del awave.*
  29. if exist awave.exe goto retry
  30. if exist awave.gid attrib -h awave.gid
  31. if exist awave.gid del awave.gid
  32. if exist setup.exe del setup.exe
  33. if exist aw2wf16.exe del aw2wf16.exe
  34. if exist file_id.diz del file_id.diz
  35. del *.txt
  36.  
  37. echo.
  38. echo Done!
  39. echo.
  40. echo.
  41. echo.
  42. echo.
  43. echo.
  44. echo.
  45. echo.
  46. echo.
  47. del uninst.bat
  48. goto end
  49.  
  50. :nodel
  51. echo.
  52. echo Done! (No files deleted).
  53. echo.
  54.  
  55. :end
  56.